home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / hips / sources / scale_geom / hips_pic.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-17  |  511 b   |  22 lines

  1. /* hips_pic: hooking hips package into pic package */
  2.  
  3. #include "pic.h"
  4. #include "hips.h"
  5.  
  6. static Pic_procs pic_hips_procs = {
  7.     (char *(*) ()) hips_open, hips_close,
  8.     hips_get_name,
  9.     hips_clear, hips_clear_rgba,
  10.  
  11.     hips_set_nchan, hips_set_box,
  12.     hips_write_pixel, hips_write_pixel_rgba,
  13.     hips_write_row, hips_write_row_rgba,
  14.  
  15.     hips_get_nchan, hips_get_box,
  16.     hips_read_pixel, hips_read_pixel_rgba,
  17.     hips_read_row, hips_read_row_rgba
  18. };
  19.  
  20. Pic       pic_hips = {"hips", &pic_hips_procs};
  21.  
  22.